home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_se / index_clause.e < prev    next >
Text File  |  1998-12-22  |  2KB  |  92 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class INDEX_CLAUSE
  17.    --   
  18.    --
  19.  
  20. inherit GLOBALS;
  21.  
  22. creation {EIFFEL_PARSER} with_tag, without_tag
  23.          
  24. feature {NONE}
  25.    
  26.    tag: STRING;
  27.    
  28.    
  29.    list: FIXED_ARRAY[EXPRESSION];
  30.    
  31. feature {NONE}
  32.    
  33.    with_tag(i: like tag) is
  34.       require
  35.      i /= Void
  36.       do
  37.      tag := i;
  38.       ensure
  39.      tag = i
  40.       end;
  41.  
  42.    without_tag(index_value: EXPRESSION) is
  43.       do
  44.      add_last(index_value);
  45.       end;
  46.  
  47. feature
  48.  
  49.    pretty_print is
  50.       local
  51.      i: INTEGER;
  52.       do
  53.      if tag /= void then
  54.         fmt.put_string(tag);
  55.         fmt.put_string(": ");
  56.      end;
  57.      if list /= Void then
  58.         fmt.level_incr;
  59.         from  
  60.            i := list.lower;
  61.         until
  62.            i > list.upper
  63.         loop
  64.            list.item(i).pretty_print;
  65.            i := i + 1;
  66.            if i <= list.upper then
  67.           fmt.put_string(", ");
  68.            end;
  69.         end;
  70.         fmt.level_decr;
  71.      end;
  72.       end;
  73.    
  74. feature {EIFFEL_PARSER}   
  75.    
  76.    add_last(index_value: EXPRESSION) is
  77.       require
  78.      index_value /= Void;
  79.       do
  80.      if list = Void then
  81.         !!list.with_capacity(4);
  82.      end;
  83.      list.add_last(index_value);
  84.       end;
  85.    
  86. invariant
  87.    
  88.    tag /= Void or else list /= Void
  89.    
  90. end -- INDEX_CLAUSE
  91.  
  92.